-
Notifications
You must be signed in to change notification settings - Fork 420
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sarek bcftools normalization #1682
base: dev
Are you sure you want to change the base?
Conversation
…cfs_with_tbis and fasta.
…cfs_with_tbis and fasta.
resolve issue with spacing Co-authored-by: Maxime U Garcia <[email protected]>
Hi all, I've modified the normalization step to include all VCFs, not just the germline ones. For this, I used the pull request from JC-Delmas as a base. I am aware that this still requires a lot of work, and I would greatly appreciate any advice or feedback you can provide. Thank you! Patricie |
|
@nf-core-bot fix linting pretty please 🙏 |
We're missing CHANGELOG + tests + subway map |
@nf-core-bot fix linting pretty please 🙏 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Amazing work! Now only the fun little side quests are missing:
- Updating the readme to include this in the possible steps
- Updating the subway map
- Add a section to the output.md docs
Warning Newer version of the nf-core template is available. Your pipeline is using an old version of the nf-core template: 3.0.2. For more documentation on how to update your pipeline, please see the nf-core documentation and Synchronisation documentation. |
@Patricie34 sorry, I forgot to merge in #1760 (which is now done). Can you sync you branch once more, and move your PR up in the CHANGELOG? |
…to update the latest changes.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All good for me
ext.prefix = { "${input.baseName}" } | ||
ext.when = { params.concatenate_vcfs || params.normalize_vcfs } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ext.prefix = { "${input.baseName}" } | |
ext.when = { params.concatenate_vcfs || params.normalize_vcfs } | |
ext.prefix = { "${input.baseName}" } | |
ext.when = { params.concatenate_vcfs || params.normalize_vcfs } |
@@ -22,7 +22,7 @@ workflow CONCATENATE_GERMLINE_VCFS { | |||
TABIX_EXT_VCF(ADD_INFO_TO_VCF.out.vcf) | |||
|
|||
// Gather vcfs and vcf-tbis for concatenating germline-vcfs | |||
germline_vcfs_with_tbis = TABIX_EXT_VCF.out.gz_tbi.map{ meta, vcf, tbi -> [ meta.subMap('id'), vcf, tbi ] }.groupTuple() | |||
germline_vcfs_with_tbis = TABIX_EXT_VCF.out.gz_tbi.groupTuple() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Did you test this? This was supposed to group all vcfs together. aren't they now not divided by their sample name?
@@ -183,6 +184,7 @@ We thank the following people for their extensive assistance in the development | |||
- [Szilveszter Juhos](https://github.com/szilvajuhos) | |||
- [Tobias Koch](https://github.com/KochTobi) | |||
- [Winni Kretzschmar](https://github.com/winni2k) | |||
- [Patricie Skaláková](https://github.com/Patricie34) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
alphabetical order 😄
PR checklist
nf-core lint
).nextflow run . -profile test,docker --outdir <OUTDIR>
).nextflow run . -profile debug,test,docker --outdir <OUTDIR>
).docs/usage.md
is updated.docs/output.md
is updated.CHANGELOG.md
is updated.README.md
is updated (including new tool citations and authors/contributors).